Address Auto-Complete
Provides real-time suggestions for address inputs, enhancing user experience by predicting and completing addresses as they are typed.
Endpoint URL
https://api.propertyreach.com/v1/suggestionsCopy
Query Params
query
string
required
The address, city, zip, county, or street to search for.
type
string
required
Suggestion type (address, city, state, county, zip)
title
string
Descriptive label for result; e.g. full address, city name, etc
streetAddress
string
What's the property street address
city
string
The city where the property is located.
state
string
State search criteria
zip
string
Property zip code
county
string
The county where the property is located.
propertyId
int
PropertyReach Property ID
status
decimal
required
Response status
message
string
required
Response message.
requestId
string
Unique ID for the request.
resultCount
int
Number of results found
billableRequests
int
billableAmount
decimal
- Source
var options = {
method: 'GET',
headers: {
'x-api-key': 'test_examp****'
}
};
var url = 'https://api.propertyreach.com/v1/suggestions';
fetch(url, options)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));